home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / text / tex / mma2ltx121.lha / mma2ltx / makefile.msc < prev    next >
Makefile  |  1995-05-17  |  693b  |  45 lines

  1. #
  2. # Makefile for Microsoft C
  3. #
  4. # mma2ltx v1.21
  5. #
  6. # Copyright (C) 1994, 1995 by Giuseppe Ghibo`
  7. #
  8. # Latest revision: 16 May 1995
  9. #
  10.  
  11. LATEX = TEX386 &lplain
  12. DVIPS = DVIPS32
  13. CC    = cl
  14.  
  15. CFLAGS = /AL /Od
  16.  
  17. all: mma2ltx.exe extpro.exe mysample.ps
  18.  
  19. mma2ltx.exe: mma2ltx.c
  20.     $(CC) $(CFLAGS) mma2ltx.c
  21.  
  22. extpro.exe: extpro.c
  23.     $(CC) $(CFLAGS) extpro.c
  24.  
  25. mysample.ps: mysample.dvi
  26.     $(DVIPS) mysample.dvi
  27.  
  28. mysample.dvi: mysample.tex mypic.tex
  29.     $(LATEX) mysample.tex
  30.  
  31. mypic.tex: mypic.ps mma2ltx.exe
  32.     mma2ltx -ucm -w10cm -sfootnotesize mypic.ps
  33.  
  34. clean:
  35.     - $(RM) *.obj
  36.     - $(RM) *.log
  37.     - $(RM) *.aux
  38.     - $(RM) *.dvi
  39.  
  40. veryclean: clean
  41.     - $(RM) mma2ltx.exe
  42.     - $(RM) extpro.exe
  43.     - $(RM) mypic.eps
  44.     - $(RM) mypic.tex
  45.